翻訳と辞書
Words near each other
・ CSS Alabama's Gulf of Mexico Expeditionary Raid
・ CSS Alabama's Indian Ocean Expeditionary Raid
・ CSS Alabama's New England Expeditionary Raid
・ CSS Alabama's South African Expeditionary Raid
・ CSS Alabama's South Atlantic Expeditionary Raid
・ CSS Alabama's South Pacific Expeditionary Raid
・ CSS Albemarle
・ CSS Animations
・ CSS Appomattox
・ CSS Archer
・ CSS Arkansas
・ CSS Baltic
・ CSS Beaufort
・ CSS Black Warrior
・ CSS Bombshell
CSS box model
・ CSS Charleston
・ CSS Chattahoochee
・ CSS Chickamauga
・ CSS Chicora
・ CSS Clarence
・ CSS code
・ CSS Colonel Lovell
・ CSS Columbia
・ CSS Corp
・ CSS Cotton Plant
・ CSS Curlew
・ CSS David
・ CSS discography
・ CSS Drewry


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

CSS box model : ウィキペディア英語版
CSS box model
In web development, the CSS box model refers to the composition of a webpage or HTML page from blocks or boxes using CSS. Specifically, the box model describes how the size of each such block and its content is determined through styling instructions. The guidelines of the box model are described by the World Wide Web Consortium (W3C).
==Specifics==

The content of each box is detemined by 4 parameters:
:
*the height/width describes the dimensions of the actual content of the box (text, images, ...)
:
*the padding describes the space between this content and the border of the box
:
*the border is any kind of line (solid, dotted, dashed...) surrounding the box, if present
:
*the margin is the space around the border
The total width of a box is therefore the width of the content, plus (left- and right-) padding, plus (left- and right-) border, plus (left- and right-) margin. Similarly, the total height of a box equals the height of the content, plus (top- and bottom-) padding, plus (top- and bottom-) border, plus (top- and bottom-) margin.
For example, the following CSS code

:.myClass

will specify the box dimensions of each block belonging to 'myClass'. Moreover, each such box will have total height 160px and width 260px, which is the sum of the content, padding, border and margin.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「CSS box model」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.